summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWollnashorn <Wollnashorn@users.noreply.github.com>2023-06-14 03:57:39 +0200
committerWollnashorn <Wollnashorn@users.noreply.github.com>2023-06-14 03:57:39 +0200
commit44f616edb97520e9bc82b9f9c0658a8a35806b89 (patch)
tree563f65ad81a3fa2b9462bd42f7550727c15e30be
parentvideo_core: Disable anisotropic filtering for samplers with depth compare (diff)
downloadyuzu-44f616edb97520e9bc82b9f9c0658a8a35806b89.tar
yuzu-44f616edb97520e9bc82b9f9c0658a8a35806b89.tar.gz
yuzu-44f616edb97520e9bc82b9f9c0658a8a35806b89.tar.bz2
yuzu-44f616edb97520e9bc82b9f9c0658a8a35806b89.tar.lz
yuzu-44f616edb97520e9bc82b9f9c0658a8a35806b89.tar.xz
yuzu-44f616edb97520e9bc82b9f9c0658a8a35806b89.tar.zst
yuzu-44f616edb97520e9bc82b9f9c0658a8a35806b89.zip
-rw-r--r--src/video_core/textures/texture.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/video_core/textures/texture.cpp b/src/video_core/textures/texture.cpp
index 083bfd8d3..b46dce096 100644
--- a/src/video_core/textures/texture.cpp
+++ b/src/video_core/textures/texture.cpp
@@ -62,9 +62,10 @@ std::array<float, 4> TSCEntry::BorderColor() const noexcept {
}
float TSCEntry::MaxAnisotropy() const noexcept {
- if (max_anisotropy == 0 && (depth_compare_enabled.Value() ||
- (mipmap_filter != TextureMipmapFilter::Linear &&
- !Settings::values.use_aggressive_anisotropic_filtering))) {
+ const bool suitable_mipmap_filter = Settings::values.use_aggressive_anisotropic_filtering
+ ? mipmap_filter != TextureMipmapFilter::None
+ : mipmap_filter != TextureMipmapFilter::Linear;
+ if (max_anisotropy == 0 && (depth_compare_enabled.Value() || !suitable_mipmap_filter)) {
return 1.0f;
}
const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue();